home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_10_03
/
1003034b
< prev
next >
Wrap
Text File
|
1992-01-22
|
407b
|
24 lines
EXAMPLE 5 :
/****************************************************
* This is an example of global, generic floating point
* arrays which are used to pass parameters
*
* This code is compiled to RAM.
****************************************************/
file main.h
#define NUMPARAMS 20
#define NUMRESULTS 12
file main.c
float params[NUMPARAMS];
float results[NUMRESULTS];